home *** CD-ROM | disk | FTP | other *** search
Text File | 1992-02-26 | 4.3 KB | 133 lines | [TEXT/MPS ] |
- ; File: E16.Resources
- ;
- ;
- ; Copyright Apple Computer, Inc. 1986-92
- ; All Rights Reserved
- ;
- ;
- resLogOut GEQU $0
- resLogIn GEQU $1
- resLogApp GEQU $0
- resLogSys GEQU $2
- resForkUsed GEQU $1E01 ; Resource fork not empty
- resBadFormat GEQU $1E02 ; Format of resource fork is unknown
- resNoConverter GEQU $1E03 ; No converter routine available for resource type
- resNoCurFile GEQU $1E04 ; there are no current open resource files
- resDupID GEQU $1E05 ; ID is already used
- resNotFound GEQU $1E06 ; resource was not found
- resFileNotFound GEQU $1E07 ; resource file not found
- resBadAppID GEQU $1E08 ; User ID not found, please call ResourceStartup
- resNoUniqueID GEQU $1E09 ; a unique ID was not found
- AIF C:resIndexRange,.past ; Index is out of range
- resIndexRange GEQU $1E0A
- .past
- resSysIsOpen GEQU $1E0B ; System file is already open
- resHasChanged GEQU $1E0C ; Resource marked changed; specified operation not allowed
- resDiffConverter GEQU $1E0D ; Different converter already logged in for this resource type
- resDiskFull GEQU $1E0E ; Volume is full
- resInvalidShutDown GEQU $1E0F ;can't shut down ID 401E
- resNameNotFound GEQU $1E10 ;no resource with given name
- resBadNameVers GEQU $1E11 ;bad version in rResName resource
- resDupStartUp GEQU $1E12 ;already started with this ID
- resInvalidTypeOrID GEQU $1E13 ;type or ID is 0
-
- resChanged GEQU $0020
- resPreLoad GEQU $0040
- resProtected GEQU $0080
- resAbsLoad GEQU $0400
- resConverter GEQU $0800
- resMemAttr GEQU $C31C ; Flags passed to the NewHandle Memory Manager call
- systemMap GEQU $0001
- mapChanged GEQU $0002
- romMap GEQU $0004
- resNameOffset GEQU $10000 ; type holding names
- resNameVersion GEQU $0001
- sysFileID GEQU $0001
-
- rIcon GEQU $8001 ; Icon type
- rPicture GEQU $8002 ; Picture type
- rControlList GEQU $8003 ; Control list type
- rControlTemplate GEQU $8004 ; Control template type
- rC1InputString GEQU $8005 ; GS/OS class 1 input string
- rPString GEQU $8006 ; Pascal string type
- rStringList GEQU $8007 ; String list type
- rMenuBar GEQU $8008 ; MenuBar type
- rMenu GEQU $8009 ; Menu template
- rMenuItem GEQU $800A ; Menu item definition
- rTextForLETextBox2 GEQU $800B ; Data for LineEdit LETextBox2 call
- rCtlDefProc GEQU $800C ; Control definition procedure type
- rCtlColorTbl GEQU $800D ; Color table for control
- rWindParam1 GEQU $800E ; Parameters for NewWindow2 call
- rWindParam2 GEQU $800F ; Parameters for NewWindow2 call
- rWindColor GEQU $8010 ; Window Manager color table
- rTextBlock GEQU $8011 ; Text block
- rStyleBlock GEQU $8012 ; TextEdit style information
- rToolStartup GEQU $8013 ; Tool set startup record
- rResName GEQU $8014 ; Resource name
- rAlertString GEQU $8015 ; AlertWindow input data
- rText GEQU $8016 ; Unformatted text
- rCodeResource GEQU $8017
- rCDEVCode GEQU $8018
- rCDEVFlags GEQU $8019
- rTwoRects GEQU $801A ; Two rectangles
- rFileType GEQU $801B ; Filetype descriptors--see File Type Note $42
- rListRef GEQU $801C ; List member
- rCString GEQU $801D ; C string
- rXCMD GEQU $801E
- rXFCN GEQU $801F
- rErrorString GEQU $8020 ; ErrorWindow input data
- rKTransTable GEQU $8021 ; Keystroke translation table
- rWString GEQU $8022 ; not useful--duplicates $8005
- rC1OutputString GEQU $8023 ; GS/OS class 1 output string
- rSoundSample GEQU $8024
- rTERuler GEQU $8025 ; TextEdit ruler information
- rFSequence GEQU $8026
- rCursor GEQU $8027 ; Cursor resource type
- rItemStruct GEQU $8028
- rVersion GEQU $8029
- rComment GEQU $802A
- rBundle GEQU $802B
- rFinderPath GEQU $802C
- rPaletteWindow GEQU $802D ; Used by HyperCard IIgs 1.1
- rTaggedStrings GEQU $802E
- rPatternList GEQU $802F
- rRectList GEQU $C001
- rPrintRecord GEQU $C002
- rFont GEQU $C003
-
- ; ResHeaderRec offsets
- rFileVersion GEQU $0000 ;long
- rFileToMap GEQU $0004 ;long
- rFileMapSize GEQU $0008 ;long
- rFileMemo GEQU $000C ;128 bytes
- rFileRecSize GEQU $008C
-
- ; MapRec offsets
- mapNext GEQU $0000 ;handle
- mapFlag GEQU $0004 ;word
- mapOffset GEQU $0006 ;long
- mapSize GEQU $000A ;long
- mapToIndex GEQU $000E ;word
- mapFileNum GEQU $0010 ;word
- mapID GEQU $0012 ;word
- mapIndexSize GEQU $0014 ;long
- mapIndexUsed GEQU $0018 ;long
- mapFreeListSize GEQU $001C ;word
- mapFreeListUsed GEQU $001E ;word
- mapFreeList GEQU $0020 ;"n" bytes
- ;mapIndex GEQU mapFreeList+sizeof(mapFreeList)
-
- ; FreeBlockRec offsets
- blkOffset GEQU $0000 ;long
- blkSize GEQU $0004 ;long
- blkRecSize GEQU $0008
-
- ; ResRefRec offsets
- resType GEQU $0000 ;word
- resID GEQU $0002 ;long
- resOffset GEQU $0006 ;long
- resAttr GEQU $000A ;word
- resSize GEQU $000C ;long
- resHandle GEQU $0010 ;handle
- resRecSize GEQU $0014
-